0306945545
* copyright headers for the files of the libraries linprog and alm * new class Summand for representing summands in a linear constraint * merged class SoftConstraint into class Constraint; Constraint now supports both soft and hard constraint functionality * new AddConstraint methods in class LinearSpec for directly setting constraints with 1 to 4 summands * code cleanups by using aforementioned AddConstraint methods * a new very simple test application for alm * some style corrections git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24108 a95241bf-73f2-0310-859d-f6bbb57e9c96
45 lines
749 B
C++
45 lines
749 B
C++
/*
|
|
* Copyright 2007-2008, Christof Lutteroth, lutteroth@cs.auckland.ac.nz
|
|
* Copyright 2007-2008, James Kim, jkim202@ec.auckland.ac.nz
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
|
|
#ifndef X_TAB_H
|
|
#define X_TAB_H
|
|
|
|
#include "Variable.h"
|
|
|
|
|
|
namespace BALM {
|
|
|
|
class BALMLayout;
|
|
|
|
/**
|
|
* Vertical grid line (x-tab).
|
|
*/
|
|
class XTab : public Variable {
|
|
|
|
protected:
|
|
XTab(BALMLayout* ls);
|
|
|
|
protected:
|
|
/**
|
|
* Property signifying if there is a constraint which relates
|
|
* this tab to a different tab that is further to the left.
|
|
* Only used for reverse engineering.
|
|
*/
|
|
bool fLeftLink;
|
|
|
|
public:
|
|
friend class Area;
|
|
friend class Column;
|
|
friend class BALMLayout;
|
|
|
|
};
|
|
|
|
} // namespace BALM
|
|
|
|
using BALM::XTab;
|
|
|
|
#endif // X_TAB_H
|