User input/Graphical: Difference between revisions

Content added Content deleted
m ({{omit from|AWK}})
m (→‎{{header|C++}}: cpp tag (C++ does not work))
Line 221: Line 221:
task.h
task.h
</pre>
</pre>
<lang C++>#ifndef TASK_H
<lang cpp>#ifndef TASK_H
#define TASK_H
#define TASK_H


Line 249: Line 249:
task.cpp
task.cpp
</pre>
</pre>
<lang C++>#include <QLineEdit>
<lang cpp>#include <QLineEdit>
#include <QLabel>
#include <QLabel>
#include <QHBoxLayout>
#include <QHBoxLayout>
Line 280: Line 280:
main.cpp
main.cpp
</pre>
</pre>
<lang C++>#include <QApplication>
<lang cpp>#include <QApplication>
#include "task.h"
#include "task.h"


Line 289: Line 289:
return app.exec( ) ;
return app.exec( ) ;
}</lang>
}</lang>




=={{header|Common Lisp}}==
=={{header|Common Lisp}}==