LAview.LaTeX-Struct/src/latex-struct/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 (); }
/**
2014-07-25 18:30:55 +04:00
* Constructs a new empty ``ColParams``.
2014-04-09 17:43:14 +04:00
*/
public ColParams () {}
}
}
}