X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FInsetList.h;h=3e287ad1c73c496a4461a9526b176cd3df817fd2;hb=cd4033aef3a3f1efdb5a676b8bab3d367f53a830;hp=7c0e150b226e0e796b1128fe067f619c279bfb6a;hpb=991b0ec589f718420f98f2722936386520658e82;p=lyx.git diff --git a/src/InsetList.h b/src/InsetList.h index 7c0e150b22..3e287ad1c7 100644 --- a/src/InsetList.h +++ b/src/InsetList.h @@ -16,6 +16,9 @@ #include + +namespace lyx { + class InsetBase; class Buffer; @@ -24,13 +27,14 @@ class Buffer; class InsetList { public: /// - struct InsetTable { + class InsetTable { + public: /// - lyx::pos_type pos; + InsetTable(pos_type p, InsetBase * i) : pos(p), inset(i) {} /// - InsetBase * inset; + pos_type pos; /// - InsetTable(lyx::pos_type p, InsetBase * i) : pos(p), inset(i) {} + InsetBase * inset; }; /// typedef std::vector List; @@ -42,35 +46,38 @@ public: /// ~InsetList(); /// - iterator begin() { return list.begin(); } + iterator begin() { return list_.begin(); } /// - iterator end() { return list.end(); } + iterator end() { return list_.end(); } /// - const_iterator begin() const { return list.begin(); } + const_iterator begin() const { return list_.begin(); } /// - const_iterator end() const { return list.end(); } + const_iterator end() const { return list_.end(); } /// - bool empty() const { return list.empty(); } + bool empty() const { return list_.empty(); } /// - iterator insetIterator(lyx::pos_type pos); + iterator insetIterator(pos_type pos); /// - const_iterator insetIterator(lyx::pos_type pos) const; + const_iterator insetIterator(pos_type pos) const; /// - void insert(InsetBase * inset, lyx::pos_type pos); + void insert(InsetBase * inset, pos_type pos); /// - void erase(lyx::pos_type pos); + void erase(pos_type pos); /// - InsetBase * release(lyx::pos_type); + InsetBase * release(pos_type); /// - InsetBase * get(lyx::pos_type pos) const; + InsetBase * get(pos_type pos) const; /// - void increasePosAfterPos(lyx::pos_type pos); + void increasePosAfterPos(pos_type pos); /// - void decreasePosAfterPos(lyx::pos_type pos); + void decreasePosAfterPos(pos_type pos); private: /// - List list; + List list_; }; + +} // namespace lyx + #endif