This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "imageraw.h" | |
ImageRaw::ImageRaw(int size) | |
{ | |
this->size = size; | |
buffer = new unsigned char [size]; | |
} | |
ImageRaw::~ImageRaw() | |
{ | |
// delete [] this->buffer; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css"> | |
<div class="container-fluid"> | |
<nav class="navbar navbar-inverse navbar-fixed-top"> | |
<div class="container"> | |
<div class="navbar-header"> | |
<a class="navbar-brand" href="#">Simon Danner</a> | |
</div> | |
<div id="navbar"> | |
<ul class="nav navbar-nav navbar-right"> |