X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FInsetList.h;h=33a9fe1e7f27e338240ebe1f919447d58fed090a;hb=414a11684e77aee713135ae65ec7438cfc4b162f;hp=6f86f3a444bde628b056c0fd500ae18cc231b16e;hpb=3159d1a52e777f62531932edc010bf5f8b9d6d59;p=lyx.git diff --git a/src/InsetList.h b/src/InsetList.h index 6f86f3a444..33a9fe1e7f 100644 --- a/src/InsetList.h +++ b/src/InsetList.h @@ -16,21 +16,22 @@ #include -class InsetOld; -class BufferView; +class InsetBase; +class Buffer; /// class InsetList { public: /// - struct InsetTable { + class InsetTable { + public: /// - lyx::pos_type pos; + InsetTable(lyx::pos_type p, InsetBase * i) : pos(p), inset(i) {} /// - InsetOld * inset; + lyx::pos_type pos; /// - InsetTable(lyx::pos_type p, InsetOld * i) : pos(p), inset(i) {} + InsetBase * inset; }; /// typedef std::vector List; @@ -42,35 +43,35 @@ 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(); } + /// + iterator insetIterator(lyx::pos_type pos); /// const_iterator insetIterator(lyx::pos_type pos) const; /// - void insert(InsetOld * inset, lyx::pos_type pos); + void insert(InsetBase * inset, lyx::pos_type pos); /// void erase(lyx::pos_type pos); /// - InsetOld * release(lyx::pos_type); + InsetBase * release(lyx::pos_type); /// - InsetOld * get(lyx::pos_type pos) const; + InsetBase * get(lyx::pos_type pos) const; /// void increasePosAfterPos(lyx::pos_type pos); /// void decreasePosAfterPos(lyx::pos_type pos); - /// - void insetsOpenCloseBranch(BufferView * bv); private: /// - List list; + List list_; }; #endif