mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Add OutputEnums.h. This enum will shortly replace some magic booleans
that have crept into my code. I'm putting it in a separate file becuase it is going to be included in Counters.h. The other obvious places to put it would lead to large includes in this file. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33109 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
22dc345e8c
commit
bd95cdb734
@ -106,6 +106,7 @@ src_header_files = Split('''
|
||||
output_latex.h
|
||||
output_plaintext.h
|
||||
output_xhtml.h
|
||||
OutputEnums.h
|
||||
OutputParams.h
|
||||
paper.h
|
||||
ParIterator.h
|
||||
|
@ -245,6 +245,7 @@ HEADERFILESCORE = \
|
||||
Mover.h \
|
||||
output_docbook.h \
|
||||
output.h \
|
||||
OutputEnums.h \
|
||||
output_latex.h \
|
||||
output_xhtml.h \
|
||||
OutputParams.h \
|
||||
|
24
src/OutputEnums.h
Normal file
24
src/OutputEnums.h
Normal file
@ -0,0 +1,24 @@
|
||||
// -*- C++ -*-
|
||||
/**
|
||||
* \file src/OutputEnums.h
|
||||
* This file is part of LyX, the document processor.
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
* \author Richard Heck
|
||||
*
|
||||
* Full author contact details are available in file CREDITS.
|
||||
*/
|
||||
|
||||
#ifndef OUTPUTENUMS_H
|
||||
#define OUTPUTENUMS_H
|
||||
|
||||
namespace lyx {
|
||||
|
||||
enum UpdateType {
|
||||
InternalUpdate,
|
||||
OutputUpdate
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // OUTPUTENUMS_H
|
Loading…
Reference in New Issue
Block a user