~ubuntu-branches/ubuntu/karmic/gnash/karmic

« back to all changes in this revision

Viewing changes to libcore/asobj/flash/geom/Matrix_as.h

  • Committer: Bazaar Package Importer
  • Author(s): Sindhudweep Narayan Sarkar
  • Date: 2009-10-07 00:06:10 UTC
  • mfrom: (1.1.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20091007000610-mj9rwqe774gizn1j
Tags: 0.8.6-0ubuntu1
new upstream release 0.8.6 (LP: #435897)

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include "gnashconfig.h"
25
25
#endif
26
26
 
27
 
//#include <memory> // for auto_ptr
28
 
 
29
27
namespace gnash {
30
28
 
31
29
class as_object;
32
 
class as_function;
 
30
class ObjectURI;
33
31
 
34
32
/// Initialize the global Matrix class
35
 
void Matrix_class_init(as_object& global);
36
 
 
37
 
/// Return a Matrix instance (in case the core lib needs it)
38
 
//std::auto_ptr<as_object> init_Matrix_instance();
39
 
 
40
 
// This will probably be needed by other geom classes.
41
 
as_function* getFlashGeomMatrixConstructor();
 
33
void matrix_class_init(as_object& where, const ObjectURI& uri);
42
34
 
43
35
} // end of gnash namespace
44
36
 
45
 
// __GNASH_ASOBJ_MATRIX_H__
46
37
#endif