X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FInsetList.h;h=3e287ad1c73c496a4461a9526b176cd3df817fd2;hb=cd4033aef3a3f1efdb5a676b8bab3d367f53a830;hp=33a9fe1e7f27e338240ebe1f919447d58fed090a;hpb=c9f9ba315c8e475ad47c64fef6c9c755dea3d55c;p=lyx.git diff --git a/src/InsetList.h b/src/InsetList.h index 33a9fe1e7f..3e287ad1c7 100644 --- a/src/InsetList.h +++ b/src/InsetList.h @@ -16,6 +16,9 @@ #include + +namespace lyx { + class InsetBase; class Buffer; @@ -27,9 +30,9 @@ public: class InsetTable { public: /// - InsetTable(lyx::pos_type p, InsetBase * i) : pos(p), inset(i) {} + InsetTable(pos_type p, InsetBase * i) : pos(p), inset(i) {} /// - lyx::pos_type pos; + pos_type pos; /// InsetBase * inset; }; @@ -53,25 +56,28 @@ public: /// 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_; }; + +} // namespace lyx + #endif