[ create a new paste ] login | about

Project: cpp
Language:
Description:
#c++ channel from EUIrc

Recent Pastes:

C++, pasted on Jul 29:
1
2
3
4
5
1>c:\program files (x86)\boost\boost\function\function_template.hpp(153): error C2664: 'void ibeo::ObjectDecoder::operator ()(ibeo::Connector::rcv_data_t)': Konvertierung des Parameters 1 von 'const ibeo::ObjectList' in 'ibeo::Connector::rcv_data_t' nicht möglich
1>          Kein benutzerdefinierter Konvertierungsoperator verfügbar, der diese Konvertierung durchführen kann, oder der Operator kann nicht aufgerufen werden
1>          c:\program files (x86)\boost\boost\function\function_template.hpp(147): Bei der Kompilierung der  Klassen-template der void boost::detail::function::void_function_obj_invoker1<FunctionObj,R,T0>::invoke(boost::detail::function::function_buffer &,T0)-Memberfunktion
1>          with
1>          [
...
view (77 lines)
C++, pasted on Jul 29:
1
2
3
4
5
#include <boost/signals2.hpp>

boost::signals2::connection connect_parse(const slot_type& slot)
{
	return signal_parse.connect(slot);
...
view (14 lines)
C++, pasted on Jul 27:
1
        Dim wc As System.Net.WebClient = New System.Net.WebClient
...
view (25 lines)
C++, pasted on Jul 26:
1
#include <iostream>
...
view (28 lines, 1 line of output)
C++, pasted on Jul 26:
1
2
3
4
void allonetwentyeight(int **M1, int row, int col, double& sum_error, double& allMeanSquareError)
	{
		int newval=0;
		sum_error7=0;
...
view (19 lines, 3 lines of output)
Plain Text, pasted on Jul 26:
1
error LNK2019: Verweis auf nicht aufgelöstes externes Symbol ""public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __thiscall CReStarterCmdLineInfo::GetParametersToRun(void)" (?GetParametersToRun@CReStarterCmdLineInfo@@QAE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ)" in Funktion ""public: virtual int __thiscall CReStarterApp::InitInstance(void)" (?InitInstance@CReStarterApp@@UAEHXZ)".	ReStarter.obj	ReStarter
view (1 line)
Plain Text, pasted on Jul 26:
1
error LNK2019: Reference to not resolved external symbol ""public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __thiscall CReStarterCmdLineInfo::GetParametersToRun(void)" (?GetParametersToRun@CReStarterCmdLineInfo@@QAE?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ)" in Funktion ""public: virtual int __thiscall CReStarterApp::InitInstance(void)" (?InitInstance@CReStarterApp@@UAEHXZ)".	ReStarter.obj
view (1 line)
C++, pasted on Jul 18:
1
2
3
4
5
/**
German:
Zahlenmenge.h implementiert eine mathematische Menge als ein Array geordneter
Zahlen, das privat und dynamisch angelegt ist.
Für die dynamische Änderung der Feldgröße wird die "Verdoppelungsstrategie"
...
view (821 lines, 3 lines of output)
C++, pasted on Jul 18:
1
2
3
4
5
Gegeben ist: - Ein Funktionspointer auf eine beliebige Funktion
             - Ein Array mit Parametern für diese Funktion

void *funcPtr;
returnType parameterArray;
...
view (9 lines, 2 lines of output)
C++, pasted on Jul 16:
1
2
3
4
5
int my_func(int);

int main()
{
	const int RES_OK = 0;
...
view (19 lines, 1 line of output)
C++, pasted on Jul 14:
1
2
3
4
5
#ifndef GPS_CLASS_H_
#define GPS_CLASS_H_

#include <iostream>
#include <boost/thread.hpp>
...
view (93 lines, 1 line of output)
C++, pasted on Jul 10:
1
2
3
4
5
class player {
private:
int position;
void go(int);
void stop(void);
...
view (18 lines, 2 lines of output)
C++, pasted on Jul 10:
1
2
3
4
5
#include <iostream> 
#include <algorithm> 

int main() 
{ 
...
view (11 lines)
C++, pasted on Jul 10:
1
2
3
4
5
#include <iostream> 
#include <algorithm> 

int main() 
{ 
...
view (11 lines, 1 line of output)
C, pasted on Jul 9:
1
2
3
4
5
#include <stdlib.h>
#include <stdio.h>

struct teststruct {
  char type;
...
view (16 lines, 2 lines of output)
C++, pasted on Jul 5:
1
2
3
4
5
#include <iostream>

int main()
{
  std::cout << (107.84 * 2) + (107.84 * 1)  +  (107.84 * -2) + (107.84 * -1) << std::endl;
...
view (8 lines, 2 lines of output)
C++, pasted on Jul 5:
1
2
3
4
5
struct ArrayObjectDefinition {
  int element;
  int arr_type;
  double var_float;
  std::string var_char;
...
view (15 lines)
C++, pasted on Jul 5:
1
2
3
4
5
struct ArrayObjectDefinition {
  int element;
  int arr_type;
  double var_float;
  char  *var_char;
...
view (15 lines)
C++, pasted on Jul 5:
1
2
3
4
5
#include <iostream>
#include <fenv.h>

int main()
{
...
view (13 lines, 4 lines of output)
C++, pasted on Jul 5:
1
2
3
4
5
#include <iostream>
#include <fenv.h>

int main()
{
...
view (11 lines, 2 lines of output)