Add comments WRT to where the function implementations are.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15334 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Abdelrazak Younes 2006-10-14 19:58:42 +00:00
parent e049e75b6f
commit c585c2421b
6 changed files with 7 additions and 0 deletions

View File

@ -99,6 +99,7 @@ private:
void emergencyWrite(Buffer * buf);
};
/// Implementation is in lyx_main.C
extern BufferList & theBufferList();
#endif // BUFFERLIST_H

View File

@ -44,6 +44,7 @@ public:
} // namespace frontend
} // namespace lyx
/// Implementation is in Application.C
extern lyx::frontend::Clipboard & theClipboard();
#endif // BASE_CLIPBOARD_H

View File

@ -41,6 +41,7 @@ public:
} // namespace frontend
} // namespace lyx
/// Implementation is in Application.C
extern lyx::frontend::FontLoader & theFontLoader();
#endif // QFONT_LOADER_H

View File

@ -116,6 +116,7 @@ public:
class LyXFont;
/// Implementation is in Application.C
extern lyx::frontend::FontMetrics const & theFontMetrics(LyXFont const & f);
#endif // FONT_METRICS_H

View File

@ -48,6 +48,7 @@ public:
} // namespace frontend
} // namespace lyx
/// Implementation is in Application.C
extern lyx::frontend::Selection & theSelection();
#endif // BASE_SELECTION_H

View File

@ -119,8 +119,10 @@ extern LyXFunc & theLyXFunc();
namespace lyx {
/// Implementation is in frontends/Application.C
extern FuncStatus getStatus(FuncRequest const & action);
/// Implementation is in frontends/Application.C
extern void dispatch(FuncRequest const & action);
}