Mutation.h
Go to the documentation of this file.00001 /**<!--------------------------------------------------------------------> 00002 @class Mutation 00003 @author Travis Fischer (fisch0920@gmail.com) 00004 @author Matthew Jacobs (jacobs.mh@gmail.com) 00005 @date Fall 2008 00006 00007 @brief 00008 00009 <!-------------------------------------------------------------------->**/ 00010 00011 #ifndef MUTATION_H_ 00012 #define MUTATION_H_ 00013 00014 #include <renderers/utils/Path.h> 00015 00016 class Mutation { 00017 public: 00018 ///@name Constructors 00019 //@{----------------------------------------------------------------- 00020 00021 inline Mutation(const MutationVertexList &vertices, Renderer *renderer) 00022 : m_vertices(vertices), m_renderer(renderer) 00023 { } 00024 00025 inline Mutation(Renderer *renderer) 00026 : m_renderer(renderer) 00027 { } 00028 00029 00030 //@}----------------------------------------------------------------- 00031 ///@name Main usage interface 00032 //@{----------------------------------------------------------------- 00033 00034 00035 00036 //@}----------------------------------------------------------------- 00037 }; 00038 00039 #endif // MUTATION_H_ 00040
Generated on 28 Feb 2009 for Milton by
1.5.6