forked from mia/Aegisub
Clean up libaegisub includes
Consistently use the C++ names for headers rather than a combination of the C and C++ names. Remove empty LAGI_PRE blocks. Remove checks for both AGI_PRE and LAGI_PRE and change a check for only AGI_PRE to LAGI_PRE. Originally committed to SVN as r5516.
This commit is contained in:
parent
ead31761db
commit
3c18ed542c
17 changed files with 16 additions and 34 deletions
|
@ -21,8 +21,7 @@
|
||||||
#include "../config.h"
|
#include "../config.h"
|
||||||
|
|
||||||
#ifndef LAGI_PRE
|
#ifndef LAGI_PRE
|
||||||
#include <math.h>
|
#include <cmath>
|
||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -18,11 +18,10 @@
|
||||||
/// @brief Logging
|
/// @brief Logging
|
||||||
/// @ingroup libaegisub
|
/// @ingroup libaegisub
|
||||||
|
|
||||||
#ifndef AGI_PRE
|
#ifndef LAGI_PRE
|
||||||
#include <stdio.h>
|
|
||||||
#include <string.h>
|
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
#include <cstdio>
|
||||||
|
#include <cstring>
|
||||||
#include <functional>
|
#include <functional>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -20,8 +20,7 @@
|
||||||
/// @ingroup libaegisub
|
/// @ingroup libaegisub
|
||||||
|
|
||||||
#ifndef LAGI_PRE
|
#ifndef LAGI_PRE
|
||||||
#include <math.h>
|
#include <cmath>
|
||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -20,9 +20,9 @@
|
||||||
|
|
||||||
#ifndef LAGI_PRE
|
#ifndef LAGI_PRE
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
#include <climits>
|
#include <climits>
|
||||||
|
#include <cstdio>
|
||||||
#include <locale>
|
#include <locale>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -18,9 +18,6 @@
|
||||||
/// @brief Input validation.
|
/// @brief Input validation.
|
||||||
/// @ingroup libaegisub
|
/// @ingroup libaegisub
|
||||||
|
|
||||||
#ifndef LAGI_PRE
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <libaegisub/validator.h>
|
#include <libaegisub/validator.h>
|
||||||
|
|
||||||
namespace agi {
|
namespace agi {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#if !defined(AGI_PRE) && !defined(LAGI_PRE)
|
#ifndef LAGI_PRE
|
||||||
|
|
||||||
#ifdef _WIN32 // Windows specific settings
|
#ifdef _WIN32 // Windows specific settings
|
||||||
#define HAVE_PTHREAD 1
|
#define HAVE_PTHREAD 1
|
||||||
|
|
|
@ -18,9 +18,6 @@
|
||||||
/// @brief Public interface for access methods.
|
/// @brief Public interface for access methods.
|
||||||
/// @ingroup libaegisub
|
/// @ingroup libaegisub
|
||||||
|
|
||||||
#ifndef LAGI_PRE
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <libaegisub/exception.h>
|
#include <libaegisub/exception.h>
|
||||||
|
|
||||||
namespace agi {
|
namespace agi {
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#ifndef LAGI_PRE
|
#ifndef LAGI_PRE
|
||||||
#include <string.h>
|
#include <cstring>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
|
@ -19,8 +19,7 @@
|
||||||
/// @ingroup hotkey menu event window
|
/// @ingroup hotkey menu event window
|
||||||
|
|
||||||
#ifndef LAGI_PRE
|
#ifndef LAGI_PRE
|
||||||
#include <math.h>
|
#include <cmath>
|
||||||
|
|
||||||
#include <map>
|
#include <map>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
/// @ingroup libaegisub
|
/// @ingroup libaegisub
|
||||||
///
|
///
|
||||||
|
|
||||||
#if !defined(AGI_PRE) && !defined(LAGI_PRE)
|
#ifndef LAGI_PRE
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#if !defined(AGI_PRE) && !defined(LAGI_PRE)
|
#ifndef LAGI_PRE
|
||||||
#include <iterator>
|
#include <iterator>
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
|
|
@ -19,10 +19,10 @@
|
||||||
/// @ingroup libaegisub
|
/// @ingroup libaegisub
|
||||||
|
|
||||||
#ifndef LAGI_PRE
|
#ifndef LAGI_PRE
|
||||||
#include <stdio.h>
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <time.h>
|
|
||||||
|
|
||||||
|
#include <cstdio>
|
||||||
|
#include <ctime>
|
||||||
#include <deque>
|
#include <deque>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#ifdef __DEPRECATED // Dodge GCC warnings
|
#ifdef __DEPRECATED // Dodge GCC warnings
|
||||||
|
@ -34,7 +34,6 @@
|
||||||
#endif
|
#endif
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#endif
|
#endif
|
||||||
//#include <libaegisub/exception.h>
|
|
||||||
#include <libaegisub/types.h>
|
#include <libaegisub/types.h>
|
||||||
|
|
||||||
// These macros below aren't a perm solution, it will depend on how annoying they are through
|
// These macros below aren't a perm solution, it will depend on how annoying they are through
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
/// @brief Container for holding an actual option value.
|
/// @brief Container for holding an actual option value.
|
||||||
/// @ingroup libaegisub
|
/// @ingroup libaegisub
|
||||||
|
|
||||||
#if !defined(AGI_PRE) && !defined(LAGI_PRE)
|
#ifndef LAGI_PRE
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
|
|
|
@ -18,9 +18,6 @@
|
||||||
/// @brief Common paths.
|
/// @brief Common paths.
|
||||||
/// @ingroup libaegisub
|
/// @ingroup libaegisub
|
||||||
|
|
||||||
#ifndef AGI_PRE
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <libaegisub/exception.h>
|
#include <libaegisub/exception.h>
|
||||||
#include <libaegisub/scoped_ptr.h>
|
#include <libaegisub/scoped_ptr.h>
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#if !defined(AGI_PRE) && !defined(LAGI_PRE)
|
#ifndef LAGI_PRE
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
#include <functional>
|
#include <functional>
|
||||||
#include <map>
|
#include <map>
|
||||||
|
|
|
@ -18,14 +18,10 @@
|
||||||
/// @brief Input validation.
|
/// @brief Input validation.
|
||||||
/// @ingroup libaegisub
|
/// @ingroup libaegisub
|
||||||
|
|
||||||
#ifndef LAGI_PRE
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include <libaegisub/colour.h>
|
#include <libaegisub/colour.h>
|
||||||
|
|
||||||
namespace agi {
|
namespace agi {
|
||||||
|
|
||||||
|
|
||||||
class Validator {
|
class Validator {
|
||||||
public:
|
public:
|
||||||
/// Types supported.
|
/// Types supported.
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#if !defined(AGI_PRE) && !defined(LAGI_PRE)
|
#ifndef LAGI_PRE
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue