mirror of https://github.com/odrling/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
|
@ -76,6 +76,8 @@
|
|||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
#include "boost/shared_ptr.hpp"
|
||||
|
||||
// General headers
|
||||
#include <assert.h>
|
||||
#include <ctype.h>
|
||||
|
@ -237,7 +239,7 @@
|
|||
#include <GL/glu.h>
|
||||
#endif
|
||||
|
||||
#ifndef _CRT_SECURE_NO_WARNINGS_DEFINED
|
||||
#ifdef _CRT_SECURE_NO_WARNINGS_DEFINED
|
||||
#undef _CRT_SECURE_NO_WARNINGS
|
||||
#endif
|
||||
|
||||
|
|
|
@ -39,11 +39,10 @@
|
|||
// Headers
|
||||
#ifndef AGI_PRE
|
||||
#include <vector>
|
||||
#include "boost/shared_ptr.hpp"
|
||||
#endif
|
||||
|
||||
#include "ass_entry.h"
|
||||
#include "boost/shared_ptr.hpp"
|
||||
|
||||
|
||||
/// DOCME
|
||||
typedef std::vector<unsigned char> DataVec;
|
||||
|
|
|
@ -75,13 +75,13 @@ public:
|
|||
|
||||
int layer; /// Layer; Higher = above
|
||||
|
||||
int value; /// userdata
|
||||
int value; /// userdata; used by drag tool for time
|
||||
int value2; /// more userdata
|
||||
|
||||
AssDialogue* line; /// The dialogue line this feature is for
|
||||
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?
|
||||
/// @param mx x coordinate to test
|
||||
|
|
|
@ -35,10 +35,9 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
///////////
|
||||
// Headers
|
||||
#ifndef AGI_PRE
|
||||
#include <vector>
|
||||
#include "boost/shared_ptr.hpp"
|
||||
|
||||
#include <wx/log.h>
|
||||
#include <wx/event.h>
|
||||
|
|
Loading…
Reference in New Issue