60 lines
1.1 KiB
C++
60 lines
1.1 KiB
C++
|
// $Id$
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
#ifdef HAVE_CONFIG_H
|
||
|
#include <config.h>
|
||
|
#define CONFIG_H_INCLUDED
|
||
|
#endif
|
||
|
|
||
|
#include <cassowary/Cassowary.h>
|
||
|
#include <cassowary/ClSolver.h>
|
||
|
#include <cassowary/ClConstraint.h>
|
||
|
#include <cassowary/ClErrors.h>
|
||
|
#include <cassowary/ClTypedefs.h>
|
||
|
|
||
|
|
||
|
ClSolver &
|
||
|
ClSolver::AddConstraint(ClConstraint *const )
|
||
|
{
|
||
|
return *this;
|
||
|
}
|
||
|
|
||
|
|
||
|
ostream &
|
||
|
PrintTo(ostream &xo, const ClConstraintSet &setCn)
|
||
|
{
|
||
|
ClConstraintSet::const_iterator it = setCn.begin();
|
||
|
for (; it != setCn.end(); ++it) {
|
||
|
const ClConstraint *pcn = *it;
|
||
|
xo << *pcn << endl;
|
||
|
}
|
||
|
return xo;
|
||
|
}
|
||
|
|
||
|
ostream &
|
||
|
PrintTo(ostream &xo, const list<FDNumber> &listFDN)
|
||
|
{
|
||
|
list<FDNumber>::const_iterator it = listFDN.begin();
|
||
|
for (; it != listFDN.end(); ) {
|
||
|
FDNumber n = *it;
|
||
|
xo << n;
|
||
|
++it;
|
||
|
if (it != listFDN.end())
|
||
|
xo << ",";
|
||
|
}
|
||
|
return xo;
|
||
|
}
|
||
|
|
||
|
|
||
|
ostream &operator<<(ostream &xo, const ClConstraintSet &setCn)
|
||
|
{ return PrintTo(xo,setCn); }
|
||
|
|
||
|
|
||
|
ostream &operator<<(ostream &xo, const ClSolver &solver)
|
||
|
{ return solver.PrintOn(xo); }
|
||
|
|
||
|
ostream &operator<<(ostream &xo, const list<FDNumber> &listFDN)
|
||
|
{ return PrintTo(xo,listFDN); }
|
||
|
|