Skip to content

Instantly share code, notes, and snippets.

View OkkeHendriks's full-sized avatar

Okke Hendriks OkkeHendriks

  • Prodrive Technologies B.V.
  • Science Park Eindhoven 5501, 5692 EM Son, The Netherlands
View GitHub Profile

Intro

To view the progress of a Powerpoint presentation, a progress bar can be displayed at the bottom of the slide show.

How to proceed

Once the slideshow is complete, go to Tools > Macro > Visual Basic Editor.

In the new window, select Insert > Module and copy one of the below files in the blank page:

Then go to File > Close > Return to Microsoft PowerPoint In the displayed page of Microsoft Powerpoint, go to:

@OkkeHendriks
OkkeHendriks / test_ros_named_logger
Created January 29, 2015 10:45
Is this correct behavior or not? I want to be able to control the logger levels of the separate instances of TestClass, thus they need differing names.
#include <ros/ros.h>
class TestClass
{
public:
TestClass(const std::string name)
{
ROS_INFO_NAMED(name, "This name should be: %s? The same as the logger name in front << ? ", name.c_str());
}