forked from mia/Aegisub
Add boost/shared_pointer.hpp to the precompiled header
Originally committed to SVN as r4319.
This commit is contained in:
parent
40a0c8994a
commit
2ef8302a6d
4 changed files with 7 additions and 7 deletions
|
@ -76,6 +76,8 @@
|
||||||
#include <utility>
|
#include <utility>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
#include "boost/shared_ptr.hpp"
|
||||||
|
|
||||||
// General headers
|
// General headers
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
@ -237,7 +239,7 @@
|
||||||
#include <GL/glu.h>
|
#include <GL/glu.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef _CRT_SECURE_NO_WARNINGS_DEFINED
|
#ifdef _CRT_SECURE_NO_WARNINGS_DEFINED
|
||||||
#undef _CRT_SECURE_NO_WARNINGS
|
#undef _CRT_SECURE_NO_WARNINGS
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -39,11 +39,10 @@
|
||||||
// Headers
|
// Headers
|
||||||
#ifndef AGI_PRE
|
#ifndef AGI_PRE
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
#include "boost/shared_ptr.hpp"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "ass_entry.h"
|
#include "ass_entry.h"
|
||||||
#include "boost/shared_ptr.hpp"
|
|
||||||
|
|
||||||
|
|
||||||
/// DOCME
|
/// DOCME
|
||||||
typedef std::vector<unsigned char> DataVec;
|
typedef std::vector<unsigned char> DataVec;
|
||||||
|
|
|
@ -75,13 +75,13 @@ public:
|
||||||
|
|
||||||
int layer; /// Layer; Higher = above
|
int layer; /// Layer; Higher = above
|
||||||
|
|
||||||
int value; /// userdata
|
int value; /// userdata; used by drag tool for time
|
||||||
int value2; /// more userdata
|
int value2; /// more userdata
|
||||||
|
|
||||||
AssDialogue* line; /// The dialogue line this feature is for
|
AssDialogue* line; /// The dialogue line this feature is for
|
||||||
int lineN; /// The line's index in the file
|
int lineN; /// The line's index in the file
|
||||||
|
|
||||||
int brother[4]; /// userdata; generall indexes of other features in an array
|
int brother[4]; /// userdata; generally indexes of other features in an array
|
||||||
|
|
||||||
/// @brief Is the given point over this feature?
|
/// @brief Is the given point over this feature?
|
||||||
/// @param mx x coordinate to test
|
/// @param mx x coordinate to test
|
||||||
|
|
|
@ -35,10 +35,9 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
///////////
|
|
||||||
// Headers
|
|
||||||
#ifndef AGI_PRE
|
#ifndef AGI_PRE
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
#include "boost/shared_ptr.hpp"
|
||||||
|
|
||||||
#include <wx/log.h>
|
#include <wx/log.h>
|
||||||
#include <wx/event.h>
|
#include <wx/event.h>
|
||||||
|
|
Loading…
Reference in a new issue