~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

Viewing changes to source/gameengine/Expressions/IdentifierExpr.h

  • Committer: Bazaar Package Importer
  • Author(s): Kevin Roy
  • Date: 2011-02-08 22:20:54 UTC
  • mfrom: (1.4.2 upstream)
  • mto: (14.2.6 sid) (1.5.1)
  • mto: This revision was merged to the branch mainline in revision 27.
  • Revision ID: james.westby@ubuntu.com-20110208222054-kk0gwa4bu8h5lyq4
Tags: upstream-2.56.1-beta-svn34076
ImportĀ upstreamĀ versionĀ 2.56.1-beta-svn34076

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/**
2
 
 * $Id: IdentifierExpr.h 15444 2008-07-05 17:05:05Z lukep $
 
2
 * $Id: IdentifierExpr.h 29259 2010-06-06 01:15:44Z campbellbarton $
3
3
 *
4
4
 * ***** BEGIN GPL LICENSE BLOCK *****
5
5
 *
15
15
 *
16
16
 * You should have received a copy of the GNU General Public License
17
17
 * along with this program; if not, write to the Free Software Foundation,
18
 
 * Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
18
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19
19
 *
20
20
 * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
21
21
 * All rights reserved.
46
46
        virtual CExpression*    CheckLink(std::vector<CBrokenLinkInfo*>& brokenlinks);
47
47
        virtual void                    ClearModified();
48
48
        virtual void                    BroadcastOperators(VALUE_OPERATOR op);
 
49
 
 
50
 
 
51
#ifdef WITH_CXX_GUARDEDALLOC
 
52
public:
 
53
        void *operator new(size_t num_bytes) { return MEM_mallocN(num_bytes, "GE:CIdentifierExpr"); }
 
54
        void operator delete( void *mem ) { MEM_freeN(mem); }
 
55
#endif
49
56
};
50
57
 
51
58
#endif //__IDENTIFIER_EXPR