ViewVC Help
View File
|
Revision Log
|
Show Annotations
|
View Changeset
|
Root Listing
root
/
group
/
trunk
/
OOPSE-1.0
/
utils
/
sysbuilder
/
LatticeCreator.cpp
Revision:
1423
Committed:
Wed Jul 28 04:58:20 2004 UTC
(20 years, 9 months ago) by
tim
File size:
201 byte(s)
Log Message:
refactorize Lattice class
File Contents
#
Content
1
#include "LatticeCreator.hpp"
2
#include "LatticeFactory.hpp"
3
4
BaseLatticeCreator::BaseLatticeCreator(const string& latType){
5
latticeType = latType;
6
LatticeFactory::getInstance()->register(this);
7
}
8