User input/Graphical: Difference between revisions

m
→‎{{header|C++}}: cpp tag (C++ does not work)
m ({{omit from|AWK}})
m (→‎{{header|C++}}: cpp tag (C++ does not work))
Line 221:
task.h
</pre>
<lang C++cpp>#ifndef TASK_H
#define TASK_H
 
Line 249:
task.cpp
</pre>
<lang C++cpp>#include <QLineEdit>
#include <QLabel>
#include <QHBoxLayout>
Line 280:
main.cpp
</pre>
<lang C++cpp>#include <QApplication>
#include "task.h"
 
Line 289:
return app.exec( ) ;
}</lang>
 
 
 
=={{header|Common Lisp}}==