Lines Matching refs:ContentGroup
450 class ContentGroup {
452 explicit ContentGroup(const std::string& semantics);
453 ContentGroup(const ContentGroup&);
454 ContentGroup(ContentGroup&&);
455 ContentGroup& operator=(const ContentGroup&);
456 ContentGroup& operator=(ContentGroup&&);
457 ~ContentGroup();
475 typedef std::vector<ContentGroup> ContentGroups;
551 const ContentGroup* GetGroupByName(const std::string& name) const;
552 std::vector<const ContentGroup*> GetGroupsByName(
557 void AddGroup(const ContentGroup& group) { content_groups_.push_back(group); } in AddGroup()