mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 11:23:45 +00:00
25 lines
400 B
C++
25 lines
400 B
C++
// -*- 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 Kimberly 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
|