~ubuntu-branches/ubuntu/trusty/blender/trusty

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2013-03-06 12:08:47 UTC
  • mfrom: (1.5.1) (14.1.8 experimental)
  • Revision ID: package-import@ubuntu.com-20130306120847-frjfaryb2zrotwcg
Tags: 2.66a-1ubuntu1
* Resynchronize with Debian (LP: #1076930, #1089256, #1052743, #999024,
  #1122888, #1147084)
* debian/control:
  - Lower build-depends on libavcodec-dev since we're not
    doing the libav9 transition in Ubuntu yet

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
        void Remove(int i);
58
58
        void Resize(int num);
59
59
        void SetValue(int i,CValue* val);
60
 
        CValue* GetValue(int i){        assertd(i < m_pValueArray.size());      return m_pValueArray[i];}
 
60
        CValue* GetValue(int i) { assertd(i < m_pValueArray.size()); return m_pValueArray[i]; }
61
61
        int GetCount() { return m_pValueArray.size(); }
62
62
        virtual const STR_String & GetText();
63
63
 
64
64
        bool CheckEqual(CValue* first,CValue* second);
65
65
 
66
66
#ifdef WITH_PYTHON
67
 
        virtual PyObject* py_repr(void) {
 
67
        virtual PyObject *py_repr(void) {
68
68
                PyObject *py_proxy= this->GetProxy();
69
69
                PyObject *py_list= PySequence_List(py_proxy);
70
70
                PyObject *py_string= PyObject_Repr(py_list);
87
87
        bool    m_bReleaseContents;
88
88
};
89
89
 
90
 
#endif // !defined __LISTVALUE_H__
 
90
#endif  /* __LISTVALUE_H__ */
91
91