class MxxRu::Cpp::Exe_info
Class, describing EXE-file.
Attributes
file_name[R]
path[R]
Public Class Methods
new( a_file_name, a_path )
click to toggle source
Calls superclass method
MxxRu::Cpp::TargetWithFullPath::new
# File lib/mxx_ru/cpp/toolset.rb, line 115 def initialize( a_file_name, a_path ) super( a_file_name, a_path ) # File name of exe file without a folder. @file_name = a_file_name # Folder where exe file should be. @path = a_path end