replace tabs with 4 spaces in all files
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@600 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
parent
5b77cc6de3
commit
d72b2ff1b3
22 changed files with 554 additions and 545 deletions
|
@ -37,24 +37,24 @@ Base* createBoo(){ return new Boo; }
|
|||
namespace Loki
|
||||
{
|
||||
template<> bool RegisterFunction<Foo>()
|
||||
{
|
||||
std::cout << "RegisterFunction<Foo>\n";
|
||||
return registerClass("Foo", &createFoo);
|
||||
}
|
||||
{
|
||||
std::cout << "RegisterFunction<Foo>\n";
|
||||
return registerClass("Foo", &createFoo);
|
||||
}
|
||||
template<> bool RegisterFunction<Boo>()
|
||||
{
|
||||
std::cout << "RegisterFunction<Boo>\n";
|
||||
return registerClass("Boo", &createBoo);
|
||||
}
|
||||
{
|
||||
std::cout << "RegisterFunction<Boo>\n";
|
||||
return registerClass("Boo", &createBoo);
|
||||
}
|
||||
|
||||
template<> bool UnRegisterFunction<Foo>()
|
||||
{
|
||||
std::cout << "UnRegisterFunction<Foo>\n";
|
||||
return true;
|
||||
}
|
||||
{
|
||||
std::cout << "UnRegisterFunction<Foo>\n";
|
||||
return true;
|
||||
}
|
||||
template<> bool UnRegisterFunction<Boo>()
|
||||
{
|
||||
std::cout << "UnRegisterFunction<Boo>\n";
|
||||
return true;
|
||||
}
|
||||
{
|
||||
std::cout << "UnRegisterFunction<Boo>\n";
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue