Skip to content

Instantly share code, notes, and snippets.

@TABETA
TABETA / Hage.hpp
Created December 7, 2016 21:53
多重継承すると後ろ側のクラスで分岐が発生する? ref: http://qiita.com/abedominal/items/a845b81b1057279b79b7
#ifndef __HAGE_HPP__
#define __HAGE_HPP__
class NotifierA
{
public:
virtual void notifyA() = 0;
};
class NotifierBC
<Window x:Class="OxyPlotWpfTests.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:oxy="http://oxyplot.org/wpf"
xmlns:oxyPlotWpfTests="clr-namespace:OxyPlotWpfTests"
Title="MainWindow" Height="350" Width="525">
<Window.Resources>
<oxyPlotWpfTests:MainWindowViewModel x:Key="MainWindowViewModel" />
<oxyPlotWpfTests:CustomDataPointConverter x:Key="CustomDataPointConverter"/>
</Window.Resources>