Class: Ritsu::SrcFiles::UiFile
- Inherits:
-
Ritsu::SrcFile
- Object
- Ritsu::SrcFile
- Ritsu::SrcFiles::UiFile
- Defined in:
- lib/ritsu/ext/qt/src_files/ui_file.rb
Instance Attribute Summary
Attributes inherited from Ritsu::SrcFile
Instance Method Summary collapse
- #cpp_file? ⇒ Boolean
- #header_file? ⇒ Boolean
-
#initialize(src_path, owner) ⇒ UiFile
constructor
A new instance of UiFile.
- #ui_file? ⇒ Boolean
Methods inherited from Ritsu::SrcFile
#abs_path, #base_name, #create, find_by_src_path, #include_in_source_files?, is_valid_src_path?, #project, #remove, #update, #update_content, validate_instance
Methods included from Utility
Methods included from Utility::InstanceSet
included, #initialize_instance
Constructor Details
#initialize(src_path, owner) ⇒ UiFile
Returns a new instance of UiFile.
7 8 9 |
# File 'lib/ritsu/ext/qt/src_files/ui_file.rb', line 7 def initialize(src_path, owner) super(src_path, owner) end |
Instance Method Details
#cpp_file? ⇒ Boolean
15 16 17 |
# File 'lib/ritsu/ext/qt/src_files/ui_file.rb', line 15 def cpp_file? false end |
#header_file? ⇒ Boolean
11 12 13 |
# File 'lib/ritsu/ext/qt/src_files/ui_file.rb', line 11 def header_file? false end |
#ui_file? ⇒ Boolean
19 20 21 |
# File 'lib/ritsu/ext/qt/src_files/ui_file.rb', line 19 def ui_file? true end |