X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FInsetList.h;h=3e287ad1c73c496a4461a9526b176cd3df817fd2;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=26aa44f8594fdc06fc17377ced0d1958d24e0b17;hpb=dcd8fb0428156ff4131acb1f96c73ea96164c096;p=lyx.git diff --git a/src/InsetList.h b/src/InsetList.h index 26aa44f859..3e287ad1c7 100644 --- a/src/InsetList.h +++ b/src/InsetList.h @@ -16,21 +16,25 @@ #include -class InsetOld; -class BufferView; + +namespace lyx { + +class InsetBase; +class Buffer; /// class InsetList { public: /// - struct InsetTable { + class InsetTable { + public: /// - lyx::pos_type pos; + InsetTable(pos_type p, InsetBase * i) : pos(p), inset(i) {} /// - InsetOld * inset; + pos_type pos; /// - InsetTable(lyx::pos_type p, InsetOld * i) : pos(p), inset(i) {} + InsetBase * inset; }; /// typedef std::vector List; @@ -42,35 +46,38 @@ public: /// ~InsetList(); /// - iterator begin(); + iterator begin() { return list_.begin(); } /// - iterator end(); + iterator end() { return list_.end(); } /// - const_iterator begin() const; + const_iterator begin() const { return list_.begin(); } /// - const_iterator end() const; + const_iterator end() const { return list_.end(); } /// - iterator insetIterator(lyx::pos_type pos); + bool empty() const { return list_.empty(); } /// - void insert(InsetOld * inset, lyx::pos_type pos); + iterator insetIterator(pos_type pos); /// - void erase(lyx::pos_type pos); + const_iterator insetIterator(pos_type pos) const; /// - InsetOld * release(lyx::pos_type); + void insert(InsetBase * inset, pos_type pos); /// - InsetOld * get(lyx::pos_type pos) const; + void erase(pos_type pos); /// - void increasePosAfterPos(lyx::pos_type pos); + InsetBase * release(pos_type); /// - void decreasePosAfterPos(lyx::pos_type pos); + InsetBase * get(pos_type pos) const; /// - void deleteInsetsLyXText(BufferView * bv); + void increasePosAfterPos(pos_type pos); /// - void InsetList::insetsOpenCloseBranch(BufferView * bv); + void decreasePosAfterPos(pos_type pos); private: /// - List list; + List list_; }; + +} // namespace lyx + #endif