Update class, struct and enum bracket style

This commit is contained in:
Tiago Gomes
2013-02-13 14:26:47 +00:00
parent e178c1af04
commit 2bc123d72c
26 changed files with 80 additions and 139 deletions

View File

@@ -12,8 +12,7 @@
namespace Horus {
class Symbol
{
class Symbol {
public:
Symbol (void) : id_(Util::maxUnsigned()) { }
@@ -32,8 +31,7 @@ class Symbol
};
class LogVar
{
class LogVar {
public:
LogVar (void) : id_(Util::maxUnsigned()) { }
@@ -111,8 +109,7 @@ void printSymbolDictionary (void);
class Ground
{
class Ground {
public:
Ground (Symbol f) : functor_(f) { }
@@ -138,8 +135,7 @@ typedef std::vector<Ground> Grounds;
class Substitution
{
class Substitution {
public:
void add (LogVar X_old, LogVar X_new);