File: check_sty.cpp

package info (click to toggle)
lincvs 1.4.0-2
  • links: PTS
  • area: non-free
  • in suites: sarge
  • size: 7,368 kB
  • ctags: 4,405
  • sloc: cpp: 36,167; ansic: 282; makefile: 86; sh: 51; xml: 19
file content (14 lines) | stat: -rw-r--r-- 185 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <qwindowsstyle.h>

class CStyle : public QWindowsStyle
{
public:
   CStyle() : QWindowsStyle() {}
};

int main()
{
   CStyle *sty = new CStyle();
   delete sty;
   return 0;
}