/usr/include/srchilite/versions.h is in libsource-highlight-dev 3.1.8-1.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | /*
* Created on: Apr 18, 2009
* Author: Lorenzo Bettini <http://www.lorenzobettini.it>, (C) 2008
* Copyright: See COPYING file that comes with this distribution
*/
#ifndef VERSIONS_H_
#define VERSIONS_H_
#include <string>
namespace srchilite {
/**
* Utility functions for version numbers
*/
class Versions {
public:
/**
* @return the version of Source-highlight
*/
static const std::string getVersion();
/**
* @return the version of Source-highlight library
*/
static const std::string getLibraryVersion();
/**
* @return a string with the version and the library version
*/
static const std::string getCompleteVersion();
};
}
#endif /* VERSIONS_H_ */
|