Changes in src/ResolvExpr/CurrentObject.h [ea6332d:2b59f55]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/CurrentObject.h
rea6332d r2b59f55 17 17 18 18 #include <list> // for list 19 #include <memory> // for unique_ptr 19 20 #include <stack> // for stack 21 #include <vector> 22 23 #include "Common/CodeLocation.h" 20 24 21 25 class Designation; … … 52 56 } // namespace ResolvExpr 53 57 58 namespace ast { 59 // AST class types 60 class Designation; 61 class InitAlternative; 62 class Type; 63 64 // forward declaration of internal detail 65 class MemberIterator; 66 67 /// Builds initializer lists in resolution 68 class CurrentObject final { 69 std::vector< std::shared_ptr<MemberIterator> > objStack; 70 71 public: 72 CurrentObject() = default; 73 CurrentObject( const CodeLocation & loc, const Type * type ); 74 75 /// produces a list of alternatives (Type *, Designation *) for the current sub-object's 76 /// initializer. 77 std::vector< InitAlternative > getOptions(); 78 }; 79 } // namespace ast 80 54 81 // Local Variables: // 55 82 // tab-width: 4 //
Note:
See TracChangeset
for help on using the changeset viewer.