ATC6 timestamp reset cvb++

@Mikael
Hey!
I am not certain on what you are trying to achieve.
If you are just trying to get the timestemp, have a loot at this example:

// wait for an image with a timeout of 10 seconds
      auto waitResult = stream->WaitFor(std::chrono::seconds(10));
      if (waitResult.Status == Cvb::WaitStatus::Timeout)
        throw std::runtime_error("acquisition timeout");
      // get the timestamp of the image (usually a large integer number mapped to double - so better use fixed formatting)
      std::cout << "Acquired image... " << std::fixed << waitResult.Image->RawTimestamp() << std::endl;

…otherwise it would be great if you could explain your goal.

Regards
Silas