Commit 7c49c68e by Patryk Czarnik

Pierwsze operacje wektora - zaślepkowa implementacja

parent 355a003b
File added
#include <iostream> #include <iostream>
#include "wektor.h" #include "wektor.h"
Wektor::Wektor()
{}
Wektor::~Wektor() {
}
void Wektor::push_back(int e) {
}
void Wektor::set(int idx, int e) {
}
int Wektor::get(int idx) {
return 13;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment