LAview.LaTeX-Struct/src/ColParams.vala

19 lines
304 B
Vala
Raw Normal View History

2014-04-09 17:43:14 +04:00
namespace LAview {
namespace Table {
/**
* List of Column Parameters.
*/
public class ColParams : ADocList {
protected override ADocList create_default_instance () { return new ColParams (); }
/**
* Constructs a new empty //ColParams//.
*/
public ColParams () {}
}
}
}