| SOL9 2.0 Class: Layoutable |
| SOL9 C++ Class Library | SOL9 Samples | SOL9 Tutorial | SOL9 FAQ | SOL9 ClassTree |
/*
* Layoutable.h
* Copyright (c) 2009 Antillia.com TOSHIYUKI ARAI. ALL RIGHTS RESERVED.
*/
// SOL++2000
#pragma once
namespace SOL {
class Layoutable {
public:
virtual void layout(int x, int y, int w, int h) = 0;
};
}
|